IIdentifiable<T>

An interface that guarantees a particular Entity contains an “Id” property with a type T.

Syntax

public interface IIdentifiable<T> where T : struct

Properties

Id

T Id { get; set; }
The unique identifier for this particular Entity.

Returns

T